home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl150l.zip / IO / PRINTF.C < prev    next >
C/C++ Source or Header  |  1997-06-11  |  220b  |  10 lines

  1. #include <stdio.h>
  2.  
  3. int printf(const char *format, ...)
  4. {
  5.     return vfprintf(stdout,format,((char *)&format+sizeof(char *)));
  6. }
  7. int vprintf(const char *format, void *list)
  8. {
  9.     return vfprintf(stdout,format,list);
  10. }